home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
stopchan.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
186b
|
13 lines
sndRef = LoadSound("Whiz")
Looper:
CLS
channel = LoopSound(sndRef)
Rem Loop for 10 seconds
Sleep 100
StopChannel(channel)
Input "Loop again? (y/n)",y$
If y$ = "y" Then Goto Looper
End